Skip to main content

All Questions

-1votes
1answer
236views

Patterns for loading related objects in memory (without an ORM)

I am using ADO.NET to read a bunch of data from the database into in-memory objects. This is my domain model: // Question.cs public class Question { public int ID { get; set; } public ...
software_writer's user avatar
3votes
1answer
489views

Data access design pattern

I've several cases where a single entity has multiple tables in the underlying database. When reading or writing I want to handle all of the DB queries with a single class for that object, e.g., the ...
PatrickSJ's user avatar
0votes
1answer
1kviews

Ruby best practices for Data Access layers

I'm starting my way into Ruby development and have some questions that I hope you can give your best opinion to better design some command line applications I'm developing. What are the best patterns ...
h0tfus3's user avatar
0votes
2answers
369views

Definition of the NHibernate Mapping by Code / EF Code First pattern?

Sub-questions: Does this pattern have a formal definition? Who invented it? Is it considered a DSL? The reason why I am asking is because I would like to better assess its applicability to non-classic-...
Den's user avatar
  • 4,877
2votes
1answer
156views

Finding a way to simplify complex queries on legacy application

I am working with an existing application built on Rails 3.1/MySql with much of the work taking place in a JavaScript interface, although the actual platforms are not tremendously relevant here, ...
glenatron's user avatar

close